home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ Show on Desktop 2.xpl < prev    next >
Text File  |  1999-07-21  |  2KB  |  86 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="4"
  4. "UIPATH"="Appearance\Desktop\Icons"
  5. "NAME"="Visible Icons #2"
  6. "LANGUAGE"="VBScript"
  7. "VERSION"="1.74"
  8. "TEXT 1"="Control Panel"
  9. "TEXT 2"="Printer"
  10. "TEXT 3"="MSN Versions 1.0, 2.0, 5.x or later"
  11. "TEXT 4"="MSN Versions 2.5, 2.6 or 2.7"
  12. "DESCRIPTION 1"="To show an item on the desktop, activate it. To hide it, deactivate it."
  13. "DESCRIPTION 2"="It might be necessary to activate the desktop and pressing the F5 key in order to see the changes."
  14. "AUTHOR"="Xteq Systems"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  17. "COMMENT 2"="Thanks to CptSiskoX [CptSiskoX@FlashMail.Com] for his help!"
  18.  
  19.  
  20. sPath="HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\"
  21. sCP="{21EC2020-3AEA-1069-A2DD-08002B30309D}" 'Control Panel
  22. sPR="{2227A280-3AEA-1069-A2DE-08002B30309D}" 'Printer
  23. sMSN_1="{88667D10-10F0-11D0-8150-00AA00BF8457}"  'MSN (old?)
  24. sMSN_2="{00028B00-0000-0000-C000-000000000046}"  'MSN / OSR2
  25.  
  26.  
  27. 'Doesn't work. Why????? 
  28. 'sIE="{871C5380-42A0-1069-A2EA-08002B30309D}" 'Internet Explorer (new)
  29. 'sMN="{933E70D9-A6A2-11D0-826B-00AA00512BBF}" 'MSN old (???)
  30. Sub Plugin_Initialize 
  31.  if RegPathExists(sPath & sCP) then SetUIElement 1,true
  32.  if RegPathExists(sPath & sPR) then SetUIElement 2,true
  33.  if RegPathExists(sPath & sMSN_1) then SetUIElement 3,true
  34.  if RegPathExists(sPath & sMSN_2) then SetUIElement 4,true
  35. End Sub
  36.  
  37. Sub Plugin_CheckData(ElementIndex)
  38. End Sub
  39.  
  40. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  41.  b=GetUIElement(1)
  42.  if b=true then
  43.   Call RegWriteValue(sPath & sCP & "\@","",1)
  44.  else
  45.   if RegPathExists(sPath & sCP) then
  46.    Call RegDeletePath(sPath & sCP)
  47.   end if
  48.  end if
  49.  
  50.  b=GetUIElement(2)
  51.  if b=true then
  52.   Call RegWriteValue(sPath & sPR & "\@","",1)
  53.  else
  54.   if RegPathExists(sPath & sPR) then
  55.    Call RegDeletePath(sPath & sPR)
  56.   end if
  57.  end if
  58.  
  59.  b=GetUIElement(3)
  60.  if b=true then
  61.   Call RegWriteValue(sPath & sMSN_1 & "\@","",1)
  62.  else
  63.   if RegPathExists(sPath & sMSN_1) then
  64.    Call RegDeletePath(sPath & sMSN_1)
  65.   end if
  66.  end if
  67.  
  68.  b=GetUIElement(4)
  69.  if b=true then
  70.   Call RegWriteValue(sPath & sMSN_2 & "\@","",1)
  71.  else
  72.   if RegPathExists(sPath & sMSN_2) then
  73.    Call RegDeletePath(sPath & sMSN_2)
  74.   end if
  75.  end if
  76.  
  77.  Call Logoff
  78. End Sub
  79.  
  80.  
  81. Sub Plugin_Terminate 
  82. End Sub
  83.  
  84.  
  85.  
  86.